home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / UUPC11QS.ARJ / GETOPT.H < prev    next >
C/C++ Source or Header  |  1989-10-01  |  224b  |  14 lines

  1. /*
  2.  
  3.    getopt.h
  4.  
  5.    Update history:
  6.  
  7.       01Oct89 Add function prototype for getopt                      ahd
  8.   */
  9.  
  10. extern int getopt(int argc, char **argv, char *opts);
  11.  
  12. extern int optind;
  13. extern char *optarg;
  14.